home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / libs / stdcpp / iopopen.c < prev    next >
C/C++ Source or Header  |  1997-03-15  |  7KB  |  280 lines

  1. /* 
  2.    Changed for emx by Eberhard Mattes -- Sep 1996
  3. Copyright (C) 1993 Free Software Foundation
  4.  
  5. This file is part of the GNU IO Library.  This library is free
  6. software; you can redistribute it and/or modify it under the
  7. terms of the GNU General Public License as published by the
  8. Free Software Foundation; either version 2, or (at your option)
  9. any later version.
  10.  
  11. This library is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this library; see the file COPYING.  If not, write to the Free
  18. Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20. As a special exception, if you link this library with files
  21. compiled with a GNU compiler to produce an executable, this does not cause
  22. the resulting executable to be covered by the GNU General Public License.
  23. This exception does not however invalidate any other reasons why
  24. the executable file might be covered by the GNU General Public License. */
  25.  
  26. /*  written by Per Bothner (bothner@cygnus.com) */
  27. /* Modified by Klaus Gebhardt, 1996 - 1997 */
  28.  
  29. #ifdef __EMX__
  30. #include <stdlib.h>             /* before defining _POSIX_SOURCE */
  31. #include <process.h>
  32. #include <fcntl.h>
  33. #include <signal.h>
  34. #endif /* __EMX__ */
  35.  
  36. #define _POSIX_SOURCE
  37. #include "libioP.h"
  38. #include <sys/types.h>
  39. #if _IO_HAVE_SYS_WAIT
  40. #include <signal.h>
  41. #include <unistd.h>
  42. #ifdef __STDC__
  43. #include <stdlib.h>
  44. #endif
  45. #include <sys/wait.h>
  46.  
  47. #ifndef _IO_fork
  48. #define _IO_fork vfork /* defined in libiberty, if needed */
  49. _IO_pid_t _IO_fork();
  50. #endif
  51.  
  52. #endif /* _IO_HAVE_SYS_WAIT */
  53.  
  54. #ifndef _IO_pipe
  55. #define _IO_pipe pipe
  56. extern int _IO_pipe();
  57. #endif
  58.  
  59. #ifndef _IO_dup2
  60. #define _IO_dup2 dup2
  61. extern int _IO_dup2();
  62. #endif
  63.  
  64. #ifndef _IO_waitpid
  65. #define _IO_waitpid waitpid
  66. #endif
  67.  
  68. #ifndef _IO_execl
  69. #define _IO_execl execl
  70. #endif
  71. #ifndef _IO__exit
  72. #define _IO__exit _exit
  73. #endif
  74.  
  75. #ifdef __EMX__
  76. int _IO_system(const char *, int);
  77. #endif
  78.  
  79. struct _IO_proc_file
  80. {
  81.   struct _IO_FILE_plus file;
  82.   /* Following fields must match those in class procbuf (procbuf.h) */
  83.   _IO_pid_t pid;
  84.   struct _IO_proc_file *next;
  85. };
  86. typedef struct _IO_proc_file _IO_proc_file;
  87.  
  88. static struct _IO_proc_file *proc_file_chain = NULL;
  89.  
  90. _IO_FILE *
  91. DEFUN(_IO_proc_open, (fp, command, mode, p_mode),
  92.       _IO_FILE* fp AND const char *command AND const char *mode
  93.       AND int p_mode)
  94. {
  95. #if _IO_HAVE_SYS_WAIT
  96.   int read_or_write;
  97.   int pipe_fds[2];
  98.   int parent_end, child_end;
  99.   _IO_pid_t child_pid;
  100. #ifdef __EMX__
  101.   struct _IO_proc_file *pfc;
  102.   int child_std_end, org;
  103. #endif /* __EMX__ */
  104.   if (_IO_file_is_open(fp))
  105.     return NULL;
  106.   if (_IO_pipe(pipe_fds) < 0)
  107.     return NULL;
  108.   if (mode[0] == 'r')
  109.     {
  110.       parent_end = pipe_fds[0];
  111.       child_end = pipe_fds[1];
  112.       read_or_write = _IO_NO_WRITES;
  113.     }
  114.   else
  115.     {
  116.       parent_end = pipe_fds[1];
  117.       child_end = pipe_fds[0];
  118.       read_or_write = _IO_NO_READS;
  119.     }
  120.  
  121. #ifdef __EMX__
  122.   child_pid = -1;
  123.   for (pfc = proc_file_chain; pfc != NULL; pfc = pfc->next)
  124.     {
  125.       /* TODO: Save previous state and restore after starting child. */
  126.       _fcntl (_IO_fileno ((_IO_FILE *)pfc), F_SETFD, 1);
  127.     }
  128.   _fcntl (parent_end, F_SETFD, 1);
  129.  
  130.   child_std_end = (mode[0] == 'r' ? 1 : 0);
  131.   org = _dup (child_std_end);
  132.   if (org != -1)
  133.     {
  134.       _IO_dup2 (child_end, child_std_end);
  135.       _IO_close (child_end);
  136.       child_end = -1;
  137.  
  138.       child_pid = _IO_system (command, p_mode);
  139.  
  140.       _IO_dup2 (org, child_std_end);
  141.       _IO_close (org);
  142.     }
  143.  
  144.   ((_IO_proc_file*)fp)->pid = child_pid;
  145.   if (child_end != -1)
  146.     _IO_close (child_end);
  147.  
  148. #else /* not __EMX__ */
  149.   ((_IO_proc_file*)fp)->pid = child_pid = _IO_fork();
  150.   if (child_pid == 0)
  151.     {
  152.       int child_std_end = mode[0] == 'r' ? 1 : 0;
  153.       _IO_close(parent_end);
  154.       if (child_end != child_std_end)
  155.     {
  156.       _IO_dup2(child_end, child_std_end);
  157.       _IO_close(child_end);
  158.     }
  159.       /* Posix.2:  "popen() shall ensure that any streams from previous
  160.          popen() calls that remain open in the parent process are closed
  161.      in the new child process." */
  162.       while (proc_file_chain)
  163.     {
  164.       _IO_close (_IO_fileno ((_IO_FILE *) proc_file_chain));
  165.       proc_file_chain = proc_file_chain->next;
  166.     }
  167.  
  168.       _IO_execl("/bin/sh", "sh", "-c", command, (char *)0);
  169.       _IO__exit(127);
  170.     }
  171.   _IO_close(child_end);
  172. #endif /* not __EMX__ */
  173.   if (child_pid < 0)
  174.     {
  175.       _IO_close(parent_end);
  176.       return NULL;
  177.     }
  178.   _IO_fileno(fp) = parent_end;
  179.  
  180.   /* Link into proc_file_chain. */
  181.   ((_IO_proc_file*)fp)->next = proc_file_chain;
  182.   proc_file_chain = (_IO_proc_file*)fp;
  183.  
  184.   _IO_mask_flags (fp, read_or_write, _IO_NO_READS|_IO_NO_WRITES);
  185.   return fp;
  186. #else /* !_IO_HAVE_SYS_WAIT */
  187.   return NULL;
  188. #endif
  189. }
  190.  
  191. _IO_FILE *
  192. DEFUN(_IO_popen, (command, mode, p_mode),
  193.       const char *command AND const char *mode AND int p_mode)
  194. {
  195.   _IO_proc_file *fpx = (_IO_proc_file*)malloc(sizeof(_IO_proc_file));
  196.   _IO_FILE *fp = (_IO_FILE*)fpx;
  197.   if (fp == NULL)
  198.     return NULL;
  199.   _IO_init(fp, 0);
  200.   _IO_JUMPS(fp) = &_IO_proc_jumps;
  201.   _IO_file_init(fp);
  202. #if  !_IO_UNIFIED_JUMPTABLES
  203.   ((struct _IO_FILE_plus*)fp)->vtable = NULL;
  204. #endif
  205.   if (_IO_proc_open (fp, command, mode, p_mode) != NULL)
  206.     return fp;
  207.   free (fpx);
  208.   return NULL;
  209. }
  210.  
  211. int
  212. DEFUN(_IO_proc_close, (fp),
  213.       _IO_FILE *fp)
  214. {
  215.   /* This is not name-space clean. FIXME! */
  216. #if _IO_HAVE_SYS_WAIT
  217.   volatile void *sigint_handler, *sigbreak_handler,  *sigchld_handler;
  218.  
  219.   int wstatus;
  220.   _IO_proc_file **ptr = &proc_file_chain;
  221.   _IO_pid_t wait_pid;
  222.   int status = -1;
  223.   
  224.   /* Unlink from proc_file_chain. */
  225.   for ( ; *ptr != NULL; ptr = &(*ptr)->next)
  226.     {
  227.       if (*ptr == (_IO_proc_file*)fp)
  228.     {
  229.       *ptr = (*ptr)->next;
  230.       status = 0;
  231.       break;
  232.     }
  233.     }
  234.  
  235.   if (status < 0 || _IO_close(_IO_fileno(fp)) < 0)
  236.     return -1;
  237.  
  238.   sigint_handler   = signal (SIGINT,   SIG_IGN);
  239.   sigbreak_handler = signal (SIGBREAK, SIG_IGN);
  240.   sigchld_handler  = signal (SIGCHLD,  SIG_IGN);
  241.  
  242.   do
  243.     {
  244.       wait_pid = _IO_waitpid (((_IO_proc_file*)fp)->pid, &wstatus, 0);
  245.     } while ((wait_pid == -1 && errno == EINTR));
  246.  
  247.   signal (SIGINT,   sigint_handler);
  248.   signal (SIGBREAK, sigbreak_handler);
  249.   signal (SIGCHLD,  sigchld_handler);
  250.  
  251.   if (wait_pid == -1)  return -1;
  252.   return wstatus;
  253.  
  254.  
  255. #else /* !_IO_HAVE_SYS_WAIT */
  256.   return -1;
  257. #endif
  258. }
  259.  
  260. struct _IO_jump_t _IO_proc_jumps = {
  261.   JUMP_INIT_DUMMY,
  262.   JUMP_INIT(finish, _IO_file_finish),
  263.   JUMP_INIT(overflow, _IO_file_overflow),
  264.   JUMP_INIT(underflow, _IO_file_underflow),
  265.   JUMP_INIT(uflow, _IO_default_uflow),
  266.   JUMP_INIT(pbackfail, _IO_default_pbackfail),
  267.   JUMP_INIT(xsputn, _IO_file_xsputn),
  268.   JUMP_INIT(xsgetn, _IO_default_xsgetn),
  269.   JUMP_INIT(seekoff, _IO_file_seekoff),
  270.   JUMP_INIT(seekpos, _IO_default_seekpos),
  271.   JUMP_INIT(setbuf, _IO_file_setbuf),
  272.   JUMP_INIT(sync, _IO_file_sync),
  273.   JUMP_INIT(doallocate, _IO_file_doallocate),
  274.   JUMP_INIT(read, _IO_file_read),
  275.   JUMP_INIT(write, _IO_file_write),
  276.   JUMP_INIT(seek, _IO_file_seek),
  277.   JUMP_INIT(close, _IO_proc_close),
  278.   JUMP_INIT(stat, _IO_file_stat)
  279. };
  280.